home *** CD-ROM | disk | FTP | other *** search
/ BlastDOS / LapLink 6.zip / DISK2 / LOADRC.SET < prev    next >
Text File  |  1994-08-15  |  974b  |  42 lines

  1. @echo off
  2.  
  3. if not exist $A\$TBCOM.exe goto NOFILES
  4. if not exist $A\rcdos.exe goto NOFILES
  5. if not exist $A\cmdos.exe goto NOFILES
  6.  
  7. rem   --- Uninstall existing TSRs ---
  8. $A\rcdos.exe /u /q
  9. $A\cmdos.exe /u /q
  10. $A\$TBCOM.exe /u /q
  11.  
  12. rem   --- Load the communications ---
  13. $A\$TBCOM.exe /l /p$NS
  14. if not errorlevel 0 goto UNINST
  15.  
  16. rem   --- Load DOS communications manager ---
  17. $A\cmdos.exe /l /p$NS
  18. if not errorlevel 0 goto UNINST
  19.  
  20. rem   --- Load Remote Control ---
  21. $A\rcdos.exe /l /p$NS
  22. if not errorlevel 0 goto UNINST
  23.  
  24. goto END
  25.  
  26. :NOFILES
  27. echo Cannot be a LapLink DOS Remote Control Host because one (or more) files 
  28. echo are missing.  You may wish to run the LapLink for Windows Setup program 
  29. echo again to install the missing files.  This does not affect your ability 
  30. echo to host a Windows Remote Control session.  
  31. goto END
  32.  
  33. rem   --- Uninstall existing TSRs ---
  34.  
  35. :UNINST
  36. $A\rcdos.exe /u
  37. $A\cmdos.exe /u 
  38. $A\$TBCOM.exe /u
  39.  
  40. :END
  41. echo on
  42.